home *** CD-ROM | disk | FTP | other *** search
/ The Complete Utilities To…ka 501 Killer Utilities! / 501 Killer Utilities! (Macworld July 1995).cdr / Programming / metro-c-cpp-121 / C_C++_1.2.1 / INTO ‘Headers’ / PPC Specific / alloca.h next >
Encoding:
C/C++ Source or Header  |  1994-12-13  |  217 b   |  15 lines  |  [TEXT/MPCC]

  1.  
  2. /*
  3.  *    alloca.h    -    alloca() support for Metrowerks C++ (PowerPC)
  4.  *
  5.  *    Copyright © 1994 metrowerks inc. All Rights Reserved.
  6.  *
  7.  */
  8.  
  9. #ifndef _ALLOCA
  10. #define    _ALLOCA
  11.  
  12. #define    alloca(x)    __alloca(x)
  13.  
  14. #endif    /* _ALLOCA */
  15.